home *** CD-ROM | disk | FTP | other *** search
/ Web3D Graphics - Virtual Worlds Created With VRML / Web3D Graphics - Virtual Worlds Created With VRML.iso / CosmoPlayer / cosmo_win95nt_eng.exe / data1.cab / Doc_Files / credits.wrl < prev    next >
Encoding:
Text File  |  1998-12-30  |  3.8 KB  |  140 lines

  1. #VRML V2.0 utf8 
  2.  
  3. PROTO ScrollingTextGroup
  4.   [ field MFString text            "Scrolling Text Group"
  5.     eventIn SFTime   start
  6.     eventIn SFTime   stop
  7.     exposedField SFBool enabled FALSE
  8.     field SFTime   duration        48
  9.     field SFColor  color        0 0 0 
  10.     field SFBool   loop            TRUE
  11.     field SFRotation  rotation        0 0 1 0
  12.   ]
  13.   {
  14.      Group {
  15.            children [
  16.              DEF theTransform Transform {
  17.            translation 0 -20 0
  18.                 # rotation    -1 0 0  0.627139
  19.                 scale            0.06 0.06 0.06
  20.          children [
  21.             Shape {
  22.             appearance    Appearance {
  23.                   material    Material {
  24.                         ambientIntensity    0.25
  25.                         diffuseColor    IS color
  26.                         specularColor    0 0.0697667 0.0955906
  27.                         shininess    0.078125
  28.                       }
  29.                     }
  30.             geometry Text {
  31.                   string    IS text
  32.                   fontStyle    FontStyle {
  33.                         size    24
  34.                         family    "SERIF"
  35.                         style    "ITALIC"
  36.                         justify    "MIDDLE"
  37.                   }
  38.                     }
  39.                     }
  40.          ]
  41.          }
  42.              DEF theTimer TimeSensor {
  43.                     enabled IS enabled
  44.                         startTime    IS start
  45.                         stopTime     IS stop
  46.             loop          TRUE
  47.                         cycleInterval IS duration
  48.                 }
  49.          DEF theTranslation PositionInterpolator {
  50.             key    [ 0, 1 ]
  51.             keyValue [ 0 -9 0 , 0 52 0]
  52.          }
  53.            ]
  54.          }
  55.     ROUTE theTimer.fraction_changed TO theTranslation.set_fraction
  56.     ROUTE theTranslation.value_changed TO theTransform.set_translation
  57.   }
  58.  
  59. Group {
  60.     children [
  61.     Background { 
  62.         skyColor 0.98 0.93 0.71
  63.     }
  64.         NavigationInfo {
  65.       type "NONE"
  66.       visibilityLimit 11
  67.     }
  68.     Viewpoint { fieldOfView 0.8 }
  69.     DEF Prox ProximitySensor { size 50 50 50 }
  70.     Fog { 
  71.       color 0.98 0.93 0.71
  72.       visibilityRange  11
  73.       fogType "LINEAR"
  74.     }
  75.     DEF S Script {
  76.       eventIn  SFTime loadTime
  77.       eventOut SFTime startOut
  78.       eventOut SFTime stopOut
  79.       eventOut SFBool enableOut
  80.       url "vrmlscript:
  81.             function loadTime(t) {
  82.               enableOut = TRUE;
  83.               startOut = t+2; // delay for suspense
  84.               stopOut = 0;
  85.             }"
  86.     }
  87.  
  88.     Transform {
  89.       translation    0 2 0
  90.       rotation    1 0 0  -1.1
  91.       children [
  92.         DEF ST ScrollingTextGroup { text 
  93.                         [ "Murat Aktihanoglu"
  94.               "Mark Benzel"
  95.                           "Amit Bleiweiss"
  96.               "Jim Brook"
  97.                           "David Brown"
  98.                           "David Chamberlin"
  99.                           "Don Chin"
  100.                           "Mike Dashe"
  101.                           "Mark Davoren"
  102.                           "Chris Fouts"
  103.                           "David Frerichs"
  104.                           "Jed Hartman"
  105.                           "Kevin Hartz"
  106.                           "Lesley Kalmin"
  107.                           "Lalitha Karinthi"
  108.                           "Susan Kropf"
  109.                           "Sunil Kulkarni"
  110.                           "Jeff Lee"
  111.                           "Richard Lee"
  112.               "Michail Liapunov"
  113.                           "Jean Lin"
  114.                           "Jon Logan"
  115.                           "John Louch"
  116.                           "T.J. Marbois"
  117.                           "Chris Marrin"
  118.                           "Alan Norton"
  119.                           "Naveen Patil"
  120.               "Padi Peyrovan"
  121.               "Anna Ramos"
  122.                           "Glenn Shute"
  123.               "Kevin Smith"
  124.               "Andrea Tan"
  125.               "Danielle Theriault"
  126.                           "R.K. Tumuluri"
  127.                           "Dan Venolia"
  128.               "David Yu"
  129.                           "Daniel Woods"
  130.                         ]
  131.         }
  132.       ]
  133.     }
  134.       ]
  135. }
  136. ROUTE Prox.enterTime TO S.loadTime
  137. ROUTE S.startOut TO ST.start
  138. ROUTE S.stopOut TO ST.stop
  139. ROUTE S.enableOut TO ST.enabled
  140.